home *** CD-ROM | disk | FTP | other *** search
- // Copyright 1993 by Jon Dart. All Rights Reserved.
-
- #include "bookentr.h"
-
- Book_Entry::Book_Entry( unsigned long hc, byte rec, byte mv_indx, unsigned nxt )
- : hash_code(hc), recommend(rec), move_index(mv_indx), next(nxt)
- {
- }
-
- int Book_Entry::operator == ( const Book_Entry & be) const
- {
- return (hash_code == be.hash_code);
- }
-